home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Libraries / CHyperText 1.2 / CDemoDialog.h < prev    next >
Text File  |  1994-04-05  |  902b  |  39 lines

  1. /******************************************************************************
  2.  CDemoDialog.cp
  3.  
  4.         
  5.     SUPERCLASS = CDLOGDirector
  6.     
  7.     Copyright © 1994 Johns Hopkins University. All rights reserved.
  8.     
  9.     Original Author:     Martin R. Wachter        email:    mrw@welchgate.welch.jhu.edu
  10.     Created:            4/4/94                    by:        mrw            TCL Version:    1.1.3
  11.     Modified:            4/5/94                    by:        mrw            TCL Version:    1.1.3
  12.  
  13.  ******************************************************************************/
  14.  
  15. #pragma once
  16.  
  17. #include "CDLOGDirector.h"
  18.  
  19. CLASS CIconPane;
  20. CLASS CHyperText;
  21.  
  22. class CDemoDialog : public CDLOGDirector{
  23.  
  24. public:
  25.     
  26.     CHyperText    *itsHyperText;
  27.     CIconPane    *itsASIcon;
  28.     CIconPane    *itsPaintIcon;
  29.     CIconPane    *itsCommIcon;
  30.     CIconPane    *itsMailIcon;
  31.     
  32.     void IDemoDialog( void);
  33.     
  34.     virtual void DoCommand( long aCmd);
  35.     virtual void ProviderChanged( CCollaborator *aProvider, long reason, void *info);
  36.     
  37.     virtual void Dispose( void);
  38.  
  39. };